home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 1 / PC Actual CD 01.iso / share / dos / progr / micro_c.arj / HELLO.C < prev    next >
Encoding:
C/C++ Source or Header  |  1993-10-05  |  163 b   |  12 lines

  1. /*
  2.  * Standard 'C' demo... Say hello to the world
  3.  *
  4.  * Compile command: cc hello
  5.  */
  6. #include \mc\stdio.h
  7.  
  8. main()
  9. {
  10.     fputs("Hello world\n", stdout);
  11. }
  12.